home *** CD-ROM | disk | FTP | other *** search
/ Champak 43 / Vol 43.iso / games / superdog.swf / scripts / DefineSprite_2054 / frame_2 / DoAction.as
Encoding:
Text File  |  2007-06-25  |  419 b   |  21 lines

  1. stop();
  2. newscore.gotoAndStop(1);
  3. var mySave = SharedObject.getLocal("scoremap");
  4. var scores = mySave.data.score;
  5. var i = 0;
  6. while(i < scores.length)
  7. {
  8.    this["n" + i] = scores[i][0];
  9.    this["s" + i] = scores[i][1];
  10.    this["t" + i] = scores[i][2];
  11.    if(scores[i][3] == "new")
  12.    {
  13.       newscore.gotoAndStop(i + 2);
  14.    }
  15.    i++;
  16. }
  17. bac.onRelease = function()
  18. {
  19.    _parent.gotoAndPlay("title");
  20. };
  21.